home *** CD-ROM | disk | FTP | other *** search
/ CD Charme 2 / CD Charme 02.iso / mac / BomB'X / SOURCES / S2_SCREEN_2.k < prev    next >
Text File  |  1995-11-17  |  1KB  |  62 lines

  1. object S2_SCREEN_2 is MEDIADISTRIBUTOR
  2. with
  3.     Duration is -1;
  4.     X is 0; Y is 0; Width is 640; Height is 480;
  5.     Items is [
  6.         S2_1_FOND,
  7.         S2_4_STOPPILE2,
  8.         S2_5_BOMBXMAC_MOV_
  9.     ];
  10. end;
  11.  
  12. object S2_1_FOND is MEDIASCROLLER
  13. has
  14.     
  15.     OffScreen()
  16.         do
  17.             self.Enable(true);
  18.             self.Show(true);
  19.         end;
  20.     
  21. with
  22.     Target is PICTURECLIENT with Supplier is M3_FOND; Duration is 0; end;
  23.     Duration is -1;
  24.     X is 0; Y is 0; Width is 640; Height is 480;
  25. end;
  26.  
  27. object S2_4_STOPPILE2 is MEDIASCROLLER
  28. has
  29.     
  30.     OffScreen()
  31.         do
  32.             self.Enable(true);
  33.             self.Show(true);
  34.         end;
  35.     
  36.     MouseUp(theX, theY)
  37.         do
  38.             APPLICATION.GoTo(S3_SCREEN_3);
  39.         end;
  40.     
  41. with
  42.     Target is PICTURECLIENT with Supplier is M7_STOPPILE2; Duration is 0; end;
  43.     Duration is -1;
  44.     X is 509; Y is 243; Width is 50; Height is 51;
  45. end;
  46.  
  47. object S2_5_BOMBXMAC_MOV_ is MEDIACONTROLLER
  48. has
  49.     
  50.     OffScreen()
  51.         do
  52.             self.Run(true);
  53.             self.Show(true);
  54.         end;
  55.     
  56. with
  57.     Target is MOVIECLIENT with Supplier is M1_BOMBXMAC_MOV_; end;
  58.     Duration is 0;
  59.     X is 160; Y is 120; Width is 320; Height is 240;
  60. end;
  61.  
  62.